home *** CD-ROM | disk | FTP | other *** search
- *** ../dist/vprintf.c Thu Dec 16 07:30:02 1993
- --- vprintf.c Fri Dec 17 16:41:08 1993
- ***************
- *** 126,128 ****
- --- 126,137 ----
- return (n-fakebuf._cnt-1);
- }
- #endif /* NEED_VPRINTF || NEED_VSNPRINTF */
- +
- + #ifdef _ABI_SOURCE
- + int
- + vsnprintf(char *s, int n, char *fmt, va_list args)
- + {
- + /*XXX this needs work to emulate expected behavior */
- + return vsprintf (s, fmt, args);
- + }
- + #endif
-